home *** CD-ROM | disk | FTP | other *** search
/ Champak Vol A-4 / (Vol A-4) Vol. A4.iso / Games / maquiagem-lana.swf / scripts / frame_2 / DoAction.as
Text File  |  2007-11-28  |  966b  |  50 lines

  1. stop();
  2. game_start_bt.onRollOver = function()
  3. {
  4.    so1.start(0,1);
  5.    this.game_start_bt_rollover.gotoAndStop(2);
  6. };
  7. game_start_bt.onRollOut = function()
  8. {
  9.    this.game_start_bt_rollover.gotoAndStop(1);
  10. };
  11. game_start_bt.onPress = function()
  12. {
  13.    so1.start(0,1);
  14.    this.gotoAndStop(2);
  15. };
  16. game_start_bt.onRelease = function()
  17. {
  18.    this.gotoAndStop(1);
  19.    gotoAndStop(4);
  20. };
  21. game_start_bt.onReleaseOutside = function()
  22. {
  23.    this.gotoAndStop(1);
  24.    gotoAndStop(4);
  25. };
  26. game_help_bt.onRollOver = function()
  27. {
  28.    so1.start(0,1);
  29.    this.game_help_bt_rollover.gotoAndStop(2);
  30. };
  31. game_help_bt.onRollOut = function()
  32. {
  33.    this.game_help_bt_rollover.gotoAndStop(1);
  34. };
  35. game_help_bt.onPress = function()
  36. {
  37.    so1.start(0,1);
  38.    this.gotoAndStop(2);
  39. };
  40. game_help_bt.onRelease = function()
  41. {
  42.    this.gotoAndStop(1);
  43.    gotoAndStop(3);
  44. };
  45. game_help_bt.onReleaseOutside = function()
  46. {
  47.    this.gotoAndStop(1);
  48.    gotoAndStop(3);
  49. };
  50.